home *** CD-ROM | disk | FTP | other *** search
/ Nothing but Tetris / Nothing but Tetris.iso / amiga / workbench_tris / tetris.readme < prev    next >
Text File  |  1992-11-19  |  3KB  |  68 lines

  1. SHORT: Multi-player Tetris clone.  With source.  Looks nice.  Editable levels.
  2.  
  3. Hello everyone!
  4.  
  5. This is my obligatory Tetris clone.  I figure its playable enough to release.
  6. If anyone feels the need to improve the game, do it.  I would enjoy hearing from
  7. you and adding any code changes you might have. My internet address is:
  8. umsmigi0@ccu.umanitoba.ca
  9.  
  10. This program can only be started from CLI and needs 2.0.  
  11.  
  12. OPTIONS
  13.  
  14. PLAYERS - Number of players.  Right now has a max of 3.  You can have more
  15.           players by adding new raw key code strings to the ControlKeys array.
  16.           Also add a corrosponding KeyTask element to the Tasks array.
  17. LEVEL   - Level to start at.
  18. DEPTH   - Depth of bitmaps.  Will probably crash if you set it higher than the
  19.           screen.  It will default to 2, even if your screen is deeper.
  20. XSIZE   - Change the width of the Tetris pieces.
  21. YSIZE   - Change the height of the Tetris pieces.
  22. BORDER  - Size of ther border around the Tetris 10╫20 playfield.
  23. NOWAIT  - Don't wait for other players.  Normally you will not go to the next
  24.           level if other players have not finished the level as well.
  25.  
  26. LEVELS
  27.  
  28. To use the levels you need to assign Tetris:  to the place where the levels
  29. directory is.  Use the TxtToBin command to make the levels.  There are some
  30. example levels in the supplied directories.  The format for making a level is:
  31.  
  32. line 0:  Decimal number which shows how this level is to end.  You will usually
  33.          want to use 3, I'm not sure if anything else will work.  Bit 1 means
  34.          you need to clear X number of rows.  X is defined later on.  Bit 2
  35.          says you only have Y seconds to finish.  Y is defined later.
  36. line 1:  Number of rows to clear. (X from above)
  37. line 2:  Time to play.  If the time runs out, game over.  (Y from above)
  38. line 3:  How many seconds until a line pops up from the bottom.
  39.  
  40. line 4-24:  20 lines of hex numbers which describe the playfield.  Only the last
  41.             10 bits are used by TxtToBin.
  42.  
  43.  
  44. BUGS
  45.  
  46. The joystick stuff was a little buggy.  I don't think the port is freed.  Which
  47. I don't understand, because I used the code Commodore supplied.  If you want to
  48. use the joystick, rearrange the ControlKeys and Tasks array so that JoyTask is
  49. first.
  50.  
  51. The score, time and row count are not adjusted according to XSize and YSize.
  52. Same goes for the next piece display.
  53.  
  54. Can't think of anymore.  I think I've found and removed all the enforcer and
  55. mungwall hits.
  56.  
  57.  
  58. TODO
  59.  
  60. It would be nice to have a level editor.
  61. Be able to change the colors of the pieces.  Maybe use patterns as well.
  62. Let the user change the keys to use.
  63. High score table.
  64. etc.
  65.  
  66. Trevor
  67. umsmigi0@ccu.umanitoba.ca
  68.